home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue51 / Construc / Server51.dpr < prev    next >
Text File  |  1999-09-27  |  316b  |  18 lines

  1. program Server51;
  2. uses
  3.   Forms,
  4.   MainUnit in 'MainUnit.pas' {Form1},
  5.   Server51_TLB in 'Server51_TLB.pas',
  6.   DataMod in 'DataMod.pas' {TDM: TRemoteDataModule} {TDM: CoClass};
  7.  
  8. {$R *.TLB}
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.  
  18.